home *** CD-ROM | disk | FTP | other *** search
/ .net 1998 May Disc 2 / .net May 1998 disc 2.iso / tutorial / lingo / kiosk / userkeys.dir / 00001_Script_1 next >
Text File  |  1996-03-14  |  437b  |  17 lines

  1. -- The on startMovie handler is called automatically when the movie is started
  2.  
  3. on startMovie
  4.   
  5.   set the textSize of field "Last Name" to 10
  6.   set the textSize of field "First Name" to 10
  7.   set the textSize of field "Bid" to 10
  8.   set the textSize of field "Bid display" to 10
  9.   
  10.   put "" into cast "Last Name"
  11.   put "" into cast "First Name"
  12.   put "" into cast "Bid"
  13.   put "" into cast "Bid display"
  14.   
  15. end startMovie
  16.  
  17.